From: Roger Pau Monne Date: Tue, 26 Apr 2016 10:07:48 +0000 (+0200) Subject: build: pass HOST{CC/CXX} value down to Kconfig X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~1240 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=648df4b0d49cd5c0b47625fe214ff74c27974d83;p=xen.git build: pass HOST{CC/CXX} value down to Kconfig Signed-off-by: Roger Pau Monné Acked-by: Ian Jackson Reviewed-by: Andrew Cooper Reviewed-by: Doug Goldstein Reviewed-by: Wei Liu Release-acked-by: Wei Liu --- diff --git a/xen/Makefile b/xen/Makefile index c908544157..b483823fb6 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -242,14 +242,14 @@ kconfig := silentoldconfig oldconfig config menuconfig defconfig \ randconfig .PHONY: $(kconfig) $(kconfig): - $(MAKE) -f $(BASEDIR)/tools/kconfig/Makefile.kconfig ARCH=$(ARCH) SRCARCH=$(SRCARCH) $@ + $(MAKE) -f $(BASEDIR)/tools/kconfig/Makefile.kconfig ARCH=$(ARCH) SRCARCH=$(SRCARCH) HOSTCC=$(HOSTCC) HOSTCXX=$(HOSTCXX) $@ include/config/%.conf: include/config/auto.conf.cmd $(KCONFIG_CONFIG) - $(MAKE) -f $(BASEDIR)/tools/kconfig/Makefile.kconfig ARCH=$(ARCH) SRCARCH=$(SRCARCH) silentoldconfig + $(MAKE) -f $(BASEDIR)/tools/kconfig/Makefile.kconfig ARCH=$(ARCH) SRCARCH=$(SRCARCH) HOSTCC=$(HOSTCC) HOSTCXX=$(HOSTCXX) silentoldconfig # Allow people to just run `make` as before and not force them to configure $(KCONFIG_CONFIG): - $(MAKE) -f $(BASEDIR)/tools/kconfig/Makefile.kconfig ARCH=$(ARCH) SRCARCH=$(SRCARCH) defconfig + $(MAKE) -f $(BASEDIR)/tools/kconfig/Makefile.kconfig ARCH=$(ARCH) SRCARCH=$(SRCARCH) HOSTCC=$(HOSTCC) HOSTCXX=$(HOSTCXX) defconfig # Break the dependency chain for the first run include/config/auto.conf.cmd: ;